home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
The PC-SIG Library 10
/
The PC-Sig Library - Shareware for the IBM PC and Compatibles (PC-SIG)(Tenth Edition Disks 1-2804)(1991).iso
/
PC_SIGCD
/
02
/
8
/
DISK0283.ZIP
/
MAKERAM.BAT
< prev
next >
Wrap
DOS Batch File
|
1985-01-25
|
445b
|
26 lines
echo off
rem make ram.sys and setram.exe using the DeSmet assembler
later setram.c setram.exe
if not errorlevel 1 goto nosetram
c88 setram
if errorlevel 1 goto stop
echo
bind setram -s1000
if errorlevel 1 goto stop
echo
del setram.o
:nosetram
later ram.a ram.sys
if not errorlevel 1 goto stop
asm88 ram
if errorlevel 1 goto stop
echo
bind ram -a -sFFFF
echo
del ram.o
exe2bin ram.exe ram.sys
del ram.exe
:stop